home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
All for Cell Phones: Sony Ericsson
/
Sony-Ericsson 2004.iso
/
Java
/
HTetris
/
htetris.jar
/
tetris
/
GameTimerTask.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2002-07-19
|
711 b
|
17 lines
package tetris;
import java.util.TimerTask;
import javax.microedition.lcdui.Display;
class GameTimerTask extends TimerTask {
GameScreen scr;
public GameTimerTask(GameScreen d) {
this.scr = d;
}
public void run() {
Display.getDisplay(TetrisMIDlet.instance).callSerially(this.scr);
}
}